home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 163_02 / toupper.c < prev    next >
Encoding:
Text File  |  1988-01-30  |  384 b   |  7 lines

  1. /*
  2. ** return upper-case of c if it is lower-case, else c
  3. */
  4. toupper(c) int c; {
  5.   return(c<='z' && c>='a' ? c-32 : c);
  6.   }
  7.